home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / GameboyDev / GBDK / lib / isspace.c < prev    next >
C/C++ Source or Header  |  1999-03-29  |  121b  |  10 lines

  1. #include <ctype.h>
  2.  
  3. BYTE isspace(char c)
  4. {
  5.   if(c == ' ' || c == '\t' || c == '\n')
  6.     return 1;
  7.   else
  8.     return 0;
  9. }
  10.